home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 April: Mac OS SDK / Dev.CD Apr 96 SDK / Dev.CD Apr 96 SDK1.toast / Development Kits (Disc 1) / OpenDoc Development Framework / ODFDev / ODF / OS / FWGraphx / Include / FWGrGlob.h < prev    next >
Encoding:
Text File  |  1995-11-08  |  1.5 KB  |  66 lines  |  [TEXT/MPS ]

  1. //========================================================================================
  2. //
  3. //    File:                FWGrGlob.h
  4. //    Release Version:    $ 1.0d11 $
  5. //
  6. //    Copyright:    © 1993, 1995 by Apple Computer, Inc., all rights reserved.
  7. //
  8. //========================================================================================
  9.  
  10. #ifndef FWGRGLOB_H
  11. #define FWGRGLOB_H
  12.  
  13. #ifndef FWGCONST_H
  14. #include "FWGConst.h"
  15. #endif
  16.  
  17. #ifndef FWSTDDEF_H
  18. #include "FWStdDef.h"
  19. #endif
  20.  
  21. #ifndef FWGRDEF_H
  22. #include "FWGrDef.h"
  23. #endif
  24.  
  25. #if FW_LIB_EXPORT_PRAGMAS
  26. #pragma lib_export on
  27. #endif
  28.  
  29. //========================================================================================
  30. //    Forward Declarations
  31. //========================================================================================
  32.  
  33. class     FW_CLASS_ATTR FW_CGraphicContext;
  34. class     FW_CLASS_ATTR FW_CColor;
  35. class     FW_CLASS_ATTR FW_CRasterizer;
  36.  
  37. //========================================================================================
  38. //    Private globals
  39. //========================================================================================
  40.  
  41. // ----- Transfer Modes -----
  42.  
  43. #ifdef FW_BUILD_MAC
  44. extern const short             FW_gTransferModes[];
  45. #endif
  46. #ifdef FW_BUILD_WIN
  47. extern const int             FW_gTransferModes[];
  48. extern const DWORD             FW_gWinRasterOps[];
  49. #endif
  50.  
  51. // ----- Graphic Globals -----
  52.  
  53. extern FW_CRasterizer*        FW_gRasterizer;
  54.  
  55. #ifdef FW_BUILD_MAC
  56. extern WindowPtr             FW_gScratchWindow;
  57. #endif
  58.  
  59. extern FW_CGraphicContext*    FW_gLastGC;
  60.  
  61. #if FW_LIB_EXPORT_PRAGMAS
  62. #pragma lib_export off
  63. #endif
  64.  
  65. #endif
  66.